home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / src / binutils.252 / ld / ldmain.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-26  |  1.2 KB  |  37 lines

  1. /* ldmain.h -
  2.    Copyright 1991, 1992, 1993 Free Software Foundation, Inc.
  3.  
  4.    This file is part of GLD, the Gnu Linker.
  5.  
  6.    GLD is free software; you can redistribute it and/or modify
  7.    it under the terms of the GNU General Public License as published by
  8.    the Free Software Foundation; either version 1, or (at your option)
  9.    any later version.
  10.  
  11.    GLD is distributed in the hope that it will be useful,
  12.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.    GNU General Public License for more details.
  15.  
  16.    You should have received a copy of the GNU General Public License
  17.    along with GLD; see the file COPYING.  If not, write to
  18.    the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. #ifndef LDMAIN_H
  21. #define LDMAIN_H
  22.  
  23. extern char *program_name;
  24. extern bfd *output_bfd;
  25. extern char *default_target;
  26. extern boolean trace_files;
  27. extern boolean trace_file_tries;
  28. extern boolean version_printed;
  29. extern int g_switch_value;
  30. extern const char *output_filename;
  31. extern struct bfd_link_info link_info;
  32.  
  33. extern void add_ysym PARAMS ((const char *));
  34. extern void add_keepsyms_file PARAMS ((const char *filename));
  35.  
  36. #endif
  37.